I'm trying out
https://github.com/umbraco/Umbraco.Cms.Search and running into a problem where querying just doesn't seem to work. When I inspect the Index I see that new Indexes were created successfully after installing the package, but when I use the backoffice search I get this exception: System.MissingMethodException: Method not found: 'Void Examine.Lucene.Search.LuceneQueryOptions..ctor
package references:
sample code:
public async Task<SearchResult> Search([FromQuery] SearchOptions options)
{
var results = await _searcher.SearchAsync(
indexAlias: Constants.IndexAliases.PublishedContent,
culture: "*",
query: options.Query
);
return results;
}